home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / PROGRAMMING / DESKLIBC / SOURCES.ZIP / DeskLib / !DLSources / Libraries / Icon / c / Unshade < prev    next >
Text File  |  1995-07-08  |  381b  |  14 lines

  1. #include "DeskLib:Wimp.h"
  2. #include "DeskLib:WimpSWIS.h"
  3. #include "DeskLib:Icon.h"
  4.  
  5. extern void Icon_Unshade(window_handle window, icon_handle icon)
  6. /* if the icon is currently shaded (inactive) it is unshaded (made active) */
  7. {
  8.   icon_block istate;
  9.  
  10.   Wimp_GetIconState(window, icon, &istate);
  11.   if (istate.flags.data.shaded)
  12.     Wimp_SetIconState(window, icon, 0, icon_SHADED);
  13. }
  14.